home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / system / idcutils.zip / EGADUMP.DOC < prev    next >
Text File  |  1989-07-09  |  3KB  |  77 lines

  1.  
  2.  
  3.     Documentation for EGADUMP.COM
  4.     
  5.     
  6.     Copyright 1989 Infinity Design Concepts Inc. All Rights Reserved
  7.     1052 Parkway Drive
  8.     Louisville, Kentucky 40217
  9.     (502) 636-1234
  10.     
  11.     
  12.     This program is a TSR (memory resident) utility that adds
  13.     more capabilities to the DOS print screen functions. DOS
  14.     by itself, will handle the text modes, but if the CGA graphics
  15.     modes need to be dumped to the printer, then GRAPHICS.COM
  16.     must be loaded. There is a severe limitation to GRAPHICS.COM's
  17.     capabilites and that is, that it will not work on EGA graphics
  18.     modes, that is the following modes;
  19.     
  20.         320x200 - 16 color    (mode d)
  21.         640x200 - 16 color    (mode e)
  22.         640x350 monochrome    (mode f)
  23.         640x350 - 16 color    (mode 10)
  24.  
  25.     EGADUMP should be loaded AFTER graphics.com, since graphics.com
  26.     will try to handle these modes if it gets control before
  27.     EGADUMP. In order to be able to dump all screen modes to the
  28.     printer, GRAPHICS.COM (or CGRAPHIC.COM) must be loaded
  29.     in addition to EGADUMP.
  30.     
  31.     EGADUMP is set up to work with the IBM graphics printer, which
  32.     means that if you have a printer that has an EPSON or IBM mode,
  33.     EGADUMP will work with it. If your print screen works now in
  34.     graphics mode, then it will work with EGADUMP.
  35.  
  36.  
  37.     There are two printer strings used in EGADUMP;
  38.     
  39.         ESC,"L",n    - set up for double density graphics
  40.         ESC,"3",n    - set to n/216" linefeeds
  41.         
  42.  
  43.     Command line switches:
  44.     
  45.         The /I switch given when EGADUMP is loaded
  46.         will cause black to be printed as black and white
  47.         to be printed as white. The default for EGADUMP
  48.         and GRAPHICS.COM is to reverse black and white
  49.         when printing. The switch can be invoked as follows;
  50.         
  51.             EGADUMP /I
  52.                 
  53.         The /F switch given when EGADUMP is loaded will
  54.         cause a formfeed to be sent to the printer. The
  55.         switch can be invoked as follows;
  56.         
  57.                 EGADUMP /F
  58.             
  59.                 The switches /I or /F may be used in tandom and
  60.         may be invoked as follows;
  61.         
  62.                 EGADUMP /I /F
  63.                     
  64.  
  65.     Technical:
  66.     
  67.         EGADUMP inserts itself into the Interrupt 5 (print screen)
  68.         chain. When the print screen key is depressed,
  69.         EGADUMP will get control (if it is loaded last) and
  70.         determine which video mode is active. If it is
  71.         one of the modes listed above, then EGADUMP will
  72.         handle sending the screen to the printer. If it is not
  73.         one of the above modes, then EGADUMP passes control
  74.         back to the routine that would have been called, had
  75.         EGADUMP not been loaded.
  76.  
  77.